home *** CD-ROM | disk | FTP | other *** search
/ Aminet 51 / Aminet 51 (2002)(GTI - Schatztruhe)[!][Oct 2002].iso / Aminet / dev / gg / openssl-bin.lha / ssl / misc / c_name < prev    next >
Encoding:
Text File  |  2002-08-08  |  110 b   |  11 lines

  1. #!/bin/sh
  2. #
  3. # print the subject
  4. #
  5.  
  6. for i in $*
  7. do
  8.     n=`openssl x509 -subject -noout -in $i`
  9.     echo "$i    $n"
  10. done
  11.